home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0" encoding="UTF-8"?>
-
- <xsl:stylesheet
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:msxsl="urn:schemas-microsoft-com:xslt"
- version="1.0">
-
- <xsl:output
- method="html"
- version="4.0"
- encoding="UTF-8"
- omit-xml-declaration="yes"
- indent="yes"/>
-
- <xsl:template match="/Root">
-
- <html>
- <xsl:variable name="FSName" select="PropertyBag/Property[@name='PROPID_HDM_INTERNALFSNAME']"/>
-
- <TABLE>
- <TR>
- <TD align="left" colspan="2">
-
- <xsl:choose>
- <xsl:when test="$FSName='FREE'">
- <h2>QT_TRANSLATE_NOOP("QObject", "Free Space")</h2>
- </xsl:when>
- <xsl:when test="$FSName='EXTENDED'">
- <h2>QT_TRANSLATE_NOOP("QObject", "Extended partition")</h2>
- </xsl:when>
- </xsl:choose>
-
- <img src="hline_gray"/>
- </TD>
- </TR>
- <tr>
- <td colspan="2" align="center">
- <img src="C2CAA428-F14A-48d2-93D9-AA7580338E78"/>
- </td>
- </tr>
- <tr>
- <td colspan="2">
- <img src="hline_gray"/>
- </td>
- </tr>
-
- <TR>
- <TD align="right">
- <nobr><b><xsl:value-of select="PropertyList/Property[@propname='PROPID_HDM_TYPESTRING']"/></b></nobr>
- </TD>
- <TD align="left">
- <nobr><xsl:value-of select="PropertyBag/Property[@name='PROPID_HDM_TYPESTRING']"/></nobr>
- </TD>
- </TR>
- <TR>
- <TD align="right">
- <nobr><b><xsl:value-of select="PropertyList/Property[@propname='PROPID_HDM_SIZESTRING']"/></b></nobr>
- </TD>
- <TD align="left">
- <nobr><xsl:value-of select="PropertyBag/Property[@name='PROPID_HDM_SIZESTRING']"/></nobr>
- </TD>
- </TR>
- <tr>
- <TD>
- </TD>
- <TD align="left">
- <nobr><xsl:value-of select="PropertyBag/Property[@name='PROPID_HDM_SIZESTRING_LONG']"/></nobr>
- </TD>
- </tr>
- <tr>
- <TD>
- </TD>
- <TD align="left">
- <nobr><xsl:value-of select="PropertyBag/Property[@name='PROPID_HDM_SIZEINSECTORS_STRING']"/></nobr>
- </TD>
- </tr>
-
- </TABLE>
-
- </html>
- </xsl:template>
-
- </xsl:stylesheet>
-
-
-